home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 221_01 / isupper.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-01  |  256 b   |  10 lines

  1. #include stdio.h
  2. /*
  3. **  check if upper case character
  4. **  return 1 if true else 0
  5. */
  6. isupper(c) char c; {
  7.   return((c>='A') & (c<='Z'));
  8.   }
  9.  
  10.